home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
amok_lha
/
amok40.lha
/
Environment
/
IntuiSup.Def
< prev
next >
Wrap
Text File
|
1993-08-15
|
1KB
|
41 lines
DEFINITION MODULE IntuiSup;
(*---------------------------------------------------------------------------
:Program. IntuiSup
:Version. 1.5
:History. Jan-88
:Author. Markus Peuckert
:Address. Schützenstr. 50, D-3550 Marburg, West-Germany,
:Copyright. ShareWare
:Language. Modula-2
:Translator. M2Amiga V3.3d
---------------------------------------------------------------------------*)
FROM SYSTEM IMPORT ADDRESS;
FROM Intuition IMPORT Gadget, IntuiText, Border, StringInfo, ActivationFlags,
ActivationFlagSet, IDCMPFlagSet, WindowFlagSet,
WindowPtr, ScreenFlagSet;
PROCEDURE InitBorder (VAR Bord : Border; xyData, next : ADDRESS);
PROCEDURE InitStringInfo (VAR Info : StringInfo;
VAR buf, unbuf : ARRAY OF CHAR);
PROCEDURE InitIText (VAR IText : IntuiText; x,y : INTEGER; text : ADDRESS);
PROCEDURE CreateGadget (VAR Gad : Gadget; x,y,w,h,ID : INTEGER; Type:CARDINAL;
next, Info, Bord, Text : ADDRESS;
Activ : ActivationFlagSet);
PROCEDURE CreateWindow(x,y,w,h : INTEGER; if: IDCMPFlagSet; wf: WindowFlagSet;
gad,scr,tit : ADDRESS; typ : ScreenFlagSet) : WindowPtr;
PROCEDURE IDCMPOn (window : WindowPtr; flags : IDCMPFlagSet);
PROCEDURE IDCMPOff (window : WindowPtr);
PROCEDURE ActivWindow () : WindowPtr;
END IntuiSup.Def